DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / DicomImage Constructor / DicomImage Constructor(Byte[],ReadBehaviours)

Array of bytes to read

The behaviours to be used when reading this stream




In This Topic
    DicomImage Constructor(Byte[],ReadBehaviours)
    In This Topic
    Reads an array of bytes into a new DicomImage
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal Array() As Byte, _
       Optional ByVal ReadBehaviour As ReadBehaviours _
    )
    'Usage
     
    Dim Array() As Byte
    Dim ReadBehaviour As ReadBehaviours
     
    Dim instance As New DicomImage(Array, ReadBehaviour)
    public DicomImage( 
       byte[] Array,
       ReadBehaviours ReadBehaviour
    )
    public:
    DicomImage( 
       array<byte>^ Array,
       ReadBehaviours^ ReadBehaviour
    )

    Parameters

    Array

    Array of bytes to read

    ReadBehaviour

    The behaviours to be used when reading this stream

    Return Value

    Remarks
    A direct constructor of DicomImage. Reads a byte array to create a new DicomImage object.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also